* Unzip

Building the base libraries, for source\common\common.vcproj and source\i18n\i18n.vcproj
* Open project file
* Set configuration to Release
* Set configuration type to "Static Library (.lib)"
* Enable "Ignore All Default Libraries"
* Set "Runtime library" to "Multi-threaded (/MT)"
* Define U_STATIC_IMPLEMENTATION
* Add (ptrdiff_t) cast for the x64 compile errors
* Build
* Libs (common.lib, i18n.lib) in libs

Getting the data library is significantly harder; note, for x64 binaries you'll need to compile on x64!
* Trash the old data and unzip again
* Open source\data\makedata.mak
* Replace "-m dll" with "-m static"
* After the line with
  "$(ICUPBIN)\icupkg" -x * --list "$(ICUDATA_SOURCE_ARCHIVE)" > "$(ICUTMP)\icudata.lst"
  Add a line with copy "$(ICUTMP)\..\..\..\..\..\..\icudata.lst" "$(ICUTMP)\icudata.lst"
* Open source\allinone\allinone.sln
* Build makedata subproject (with all its dependencies)

